Does FR support unicode and how have I to use it

edited 11:17AM in FastReport 4.0
dear together,

I've implemented FR in an application, which support different languages as english, german... chinese... russian and so on. Now I have to support chinese.... also inside the report.

(??) Does FR support unicode (Skript, memo,userfunction, ...)

To support the manor languages english, french and english I use an ANSI-Kofigurationfile to translate the memo.text.
procedure LoadSetMemo( MemoName : string; Sprache : string;  Ini  : TIniFile; Component : TfrxComponent);
var
  iniString   : string;      
begin                           
  iniString:= Ini.ReadString('MEMO_'+Sprache,MemoName+'.Text','');          
  if iniString <>'<<NULL>>' then TfrxMemoView(Component.FindObject(MemoName)).Text :=iniString;          
end;

It's running fine. >  The next step is to support unicode to print USC-2 little endian letter.>(??) My Questions:
Is FR support WideString? Because, I've got the answer, that this class is unknown.
Which class have I to use instead of TIniFile?
How do I have to implement the userfunctions to support the unicode (widestring?)

Thank you in anticipation

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.